home *** CD-ROM | disk | FTP | other *** search
/ MacGames Sampler / PHT MacGames Bundle.iso / MacSource Folder / Samples from the CD / Editors / emacs / Emacs-1.14b1-sources / sources / utility-src / fileutils / src / mkdir.c < prev    next >
Encoding:
C/C++ Source or Header  |  1994-04-08  |  4.5 KB  |  183 lines  |  [TEXT/EMAC]

  1. /* mkdir -- make directories
  2.    Copyright (C) 1990 Free Software Foundation, Inc.
  3.  
  4.    This program is free software; you can redistribute it and/or modify
  5.    it under the terms of the GNU General Public License as published by
  6.    the Free Software Foundation; either version 2, or (at your option)
  7.    any later version.
  8.  
  9.    This program is distributed in the hope that it will be useful,
  10.    but WITHOUT ANY WARRANTY; without even the implied warranty of
  11.    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  12.    GNU General Public License for more details.
  13.  
  14.    You should have received a copy of the GNU General Public License
  15.    along with this program; if not, write to the Free Software
  16.    Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.  */
  17.  
  18. /* Options:
  19.    -p, --parent        Ensure that the given path(s) exist:
  20.             Make any missing parent directories for each argument.
  21.             Parent dirs default to umask modified by `u+wx'.
  22.             Do not consider an argument directory that already
  23.             exists to be an error.
  24.    -m, --mode=mode    Set the mode of created directories to `mode', which is
  25.             symbolic as in chmod and uses the umask as a point of
  26.             departure.
  27.  
  28.    David MacKenzie <djm@ai.mit.edu>  */
  29.  
  30. #ifdef HAVE_CONFIG_H
  31. #if defined (CONFIG_BROKETS)
  32. /* We use <config.h> instead of "config.h" so that a compilation
  33.    using -I. -I$srcdir will use ./config.h rather than $srcdir/config.h
  34.    (which it would do because it found this file in $srcdir).  */
  35. #include <config.h>
  36. #else
  37. #include "config.h"
  38. #endif
  39. #endif
  40.  
  41. #include "stdio.h"
  42. #include "getopt.h"
  43. #include "sys/types.h"
  44. #include "system.h"
  45. #include "modechange.h"
  46. #include "version.h"
  47.  
  48. int make_path ();
  49. void error ();
  50.  
  51. static void usage ();
  52.  
  53. /* The name this program was run with. */
  54. char *program_name;
  55.  
  56. /* If nonzero, ensure that all parents of the specified directory exist.  */
  57. static int path_mode;
  58.  
  59. /* If non-zero, display usage information and exit.  */
  60. static int show_help;
  61.  
  62. /* If non-zero, print the version on standard output and exit.  */
  63. static int show_version;
  64.  
  65. static struct option /* const */ longopts[] =
  66. {
  67.   {"mode", required_argument, NULL, 'm'},
  68.   {"path", no_argument, NULL, 1},
  69.   {"parents", no_argument, NULL, 1},
  70.   {"help", no_argument, NULL, 1},
  71.   {"version", no_argument, NULL, 1},
  72.   {"", 0, NULL, 0} // Changed from NULL to "" MP
  73. };
  74.  
  75. void
  76. main (argc, argv)
  77.      int argc;
  78.      char **argv;
  79. {
  80.   unsigned int newmode;
  81.   unsigned int parent_mode;
  82.   char *symbolic_mode = NULL;
  83.   int errors = 0;
  84.   int optc;
  85.   
  86.   longopts[0].flag = NULL;
  87.   longopts[1].flag = &path_mode;
  88.   longopts[2].flag = &path_mode;
  89.   longopts[3].flag = &show_help;
  90.   longopts[4].flag = &show_version;
  91.  
  92. #if 0
  93. // For testing as standalone
  94. {
  95. static char **environ;
  96. long t;
  97. char *new_argv[] = { "mkdir", "foo", 0L };
  98. int new_argc = sizeof(new_argv) / sizeof(char *) - 1;
  99. init_unix(20000,&environ,&t,&t);
  100. argc = new_argc;
  101. argv = new_argv;
  102. }
  103. #endif
  104.  
  105.   program_name = argv[0];
  106.   path_mode = 0;
  107.  
  108.   while ((optc = getopt_long (argc, argv, "pm:", longopts, (int *) 0)) != EOF)
  109.     {
  110.       switch (optc)
  111.     {
  112.     case 0:            /* Long option. */
  113.       break;
  114.     case 'p':
  115.       path_mode = 1;
  116.       break;
  117.     case 'm':
  118.       symbolic_mode = optarg;
  119.       break;
  120.     default:
  121.       usage (1);
  122.     }
  123.     }
  124.  
  125.   if (show_version)
  126.     {
  127.       printf ("%s\n", version_string);
  128.       exit (0);
  129.     }
  130.  
  131.   if (show_help)
  132.     usage (0);
  133.  
  134.   if (optind == argc)
  135.     usage (1);
  136.  
  137.   newmode = 0777 & ~umask (0);
  138.   parent_mode = newmode | 0300;    /* u+wx */
  139.   if (symbolic_mode)
  140.     {
  141.       struct mode_change *change = mode_compile (symbolic_mode, 0);
  142.       if (change == MODE_INVALID)
  143.     error (1, 0, "invalid mode `%s'", symbolic_mode);
  144.       else if (change == MODE_MEMORY_EXHAUSTED)
  145.     error (1, 0, "virtual memory exhausted");
  146.       newmode = mode_adjust (newmode, change);
  147.     }
  148.  
  149.   for (; optind < argc; ++optind)
  150.     {
  151.       if (path_mode)
  152.     errors |= make_path (argv[optind], newmode, parent_mode, -1, -1, NULL);
  153.       else if (mkdir (argv[optind], newmode))
  154.     {
  155.       error (0, errno, "cannot make directory `%s'", argv[optind]);
  156.       errors = 1;
  157.     }
  158.     }
  159.  
  160.   exit (errors);
  161. }
  162.  
  163. static void
  164. usage (status)
  165.      int status;
  166. {
  167.   if (status != 0)
  168.     fprintf (stderr, "Try `%s --help' for more information.\n",
  169.          program_name);
  170.   else
  171.     {
  172.       printf ("Usage: %s [OPTION] DIRECTORY...\n", program_name);
  173.       printf ("\
  174. \n\
  175.   -p, --parents     no error if existing, make parent directories as needed\n\
  176.   -m, --mode MODE   set permission mode (as in chmod), not 0777 - umask\n\
  177.       --help        display this help and exit\n\
  178.       --version     output version information and exit\n");
  179.     }
  180.   exit (status);
  181. }
  182.  
  183.